/* ============================================================
   LEGENDA DO MAPA
   ============================================================ */
.mapa-legenda {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 35px;
    padding: 12px 20px;
    border-top: 1px solid #1a2a3a;
}

.mapa-legenda div {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-family: 'Courier New', monospace;
    color: #7a9aba;
}

.legenda-alvo-ativo {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #ffaa33;
    border-radius: 4px;
    box-shadow: 0 0 6px #ffaa33;
}

.legenda-capturado {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #00ff66;
    border-radius: 4px;
}

.legenda-bloqueado {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #2a4a6a;
    border-radius: 4px;
}